*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.page{
    height: 650px;
    width: 1080px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
    border-radius: 8px;
    margin: auto;
    background-color: #F8F8F8;
}
img{
    height: 650px;
    width: 540px;
}
.content{
    height: 650px;
    width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}
.title{
    margin-bottom: 60px;
}
.title h1{
    font-size: 28px;
    color: #333
}
title p{
    font-size: 14px;
    color: #555;
}
form{
    display: flex;
    flex-direction: column;
}
label{
    font-size: 17px;
    margin-bottom: 8px;
}
span a{
    margin-left: 50px;
    color: black;
    font-size: 17px;
}
input{
    width: 315px;
    height: 42px;
    padding: 0 10px;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #00000040;
    font-size: 16px;
}
.check{
    width: 15px;
    height: 15px;
    border-radius: 2px;
}
a{
    text-decoration: none;
    font-size: 14px;
    color: #d9093d;
    margin-bottom: 20px;
}
button{
    width: 314px;
    height: 42px;
    border-radius: 12px;
    color: white;
    background-color: #d9093d;
    border: none;
}
button:hover{
    background-color: #b20732;
    cursor: pointer;
}
a:hover{
    text-decoration: underline;
}
p{
    margin-top: 15px;
}



